home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000423_news@columbia.edu _Thu Mar 13 11:43:07 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA04246
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 13 Mar 1997 11:43:06 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA29011
  7.     for kermit.misc@watsun; Thu, 13 Mar 1997 11:43:05 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: FTP question: using wildcards with GET
  12. Date: 13 Mar 1997 16:43:04 GMT
  13. Organization: Columbia University
  14. Lines: 25
  15. Message-ID: <5g9aqo$a0g$1@apakabar.cc.columbia.edu>
  16. References: <Pine.SUN.3.94.970313004454.7417A-100000@panix3.panix.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6756
  19.  
  20. In article <Pine.SUN.3.94.970313004454.7417A-100000@panix3.panix.com>,
  21. Michael Pollak  <mpollak@panix.com> wrote:
  22. : The files for kermit for apples are mixed up with the files for MSkermit,
  23. : CP/M kermit, etc.  They all start with "ap", and it would be nice if FTP
  24. : allowed wildcards in its "get" statement -- then I could just type "get
  25. : ap*"  But it seems to read the asterisk literally in a get statement
  26. : (although it understood it in a LS statement).
  27. First, note that the "Apple" files in the kermit/a directory are for the
  28. Apple II, not the Macintosh.  If those are what you really want...
  29.  
  30. Use a real ftp client, not a Web browser:
  31.  
  32.   ftp kermit.columbia.edu
  33.   user: anonymous
  34.   password: your email id
  35.   cd kermit/a
  36.   prompt
  37.   mget ap*.*
  38.   bye
  39.  
  40. In fact, this is the very reason that files are grouped together by prefix.
  41.  
  42. - Frank